crypto/cipher.ctr.outUsed (field)

8 uses

	crypto/cipher (current package)
		ctr.go#L21: 	outUsed int
		ctr.go#L50: 		outUsed: 0,
		ctr.go#L55: 	remain := len(x.out) - x.outUsed
		ctr.go#L56: 	copy(x.out, x.out[x.outUsed:])
		ctr.go#L72: 	x.outUsed = 0
		ctr.go#L83: 		if x.outUsed >= len(x.out)-x.b.BlockSize() {
		ctr.go#L86: 		n := xorBytes(dst, src, x.out[x.outUsed:])
		ctr.go#L89: 		x.outUsed += n